home *** CD-ROM | disk | FTP | other *** search
/ Amiga Collections: Software of the Month Club / Amiga General Interest Volume 220 (1995)(SOMC)(Disk 2 of y)[SMCxxxC30Ix].zip / Amiga General Interest Volume 220 (1995)(SOMC)(Disk 2 of y)[SMCxxxC30Ix].adf / Typeface / Catalogs / Typeface.cd < prev    next >
Text File  |  1995-10-05  |  13KB  |  690 lines

  1. #language english
  2. #version 1
  3. ;
  4. ; Typeface 1.1
  5. ; (c) 1995 David Kinder
  6. ;
  7. ; When making a translation, please check that the translated text still
  8. ; fits into the windows and requesters, even on a 640x200 screen.
  9. ;
  10. ; If a string to be translated contains a % sign followed by one or more
  11. ; letters, then in the program they will be replaced by some text (which
  12. ; will be indicated in the comment in this file). The % construct *must*
  13. ; be left in the string so that the string will make sense.
  14. ;
  15. ; \n is a newline character, \" is a quote. If the translated string is
  16. ; longer than one line, it must have a final \ appended to it to tell
  17. ; FlexCat to scan the next line.
  18. ;
  19. ; Gadget strings (which start with "gadg", rather than "msg") can contain
  20. ; an underscore character ("_"), which means that the following character
  21. ; is the keyboard shortcut (e.g. for the string "_Cancel", "c" will be
  22. ; the shortcut). Please check that no two gadgets in the same window use
  23. ; the same shortcut!
  24. ;
  25. ;
  26. ; General requester strings
  27. ; =========================
  28. ;
  29. ; Continue operation choice.
  30. msgContinue (//)
  31. Continue
  32. ;
  33. ; Cancel operation choice.
  34. msgCancel (//)
  35. Cancel
  36. ;
  37. ; Yes/no choice. The "Yes" must come first, and be separated from the "No"
  38. ; by the | character.
  39. msgYesNo (//)
  40. Yes|No
  41. ;
  42. ;
  43. ; General gadget strings
  44. ; ======================
  45. ;
  46. ; Accept gadget
  47. gadgAccept (//)
  48. _Accept
  49. ;
  50. ; Cancel gadget
  51. gadgCancel (//)
  52. _Cancel
  53. ;
  54. ;
  55. ; Error requesters occurring during initialization
  56. ; ================================================
  57. ;
  58. ; no asl.library
  59. msgNoAslLib (//)
  60. Cannot open asl.library v37+.
  61. ;
  62. ; no diskfont.library
  63. msgNoDiskfontLib (//)
  64. Cannot open diskfont.library v36+.
  65. ;
  66. ; no iffparse.library
  67. msgNoIFFParseLib (//)
  68. Cannot open iffparse.library v37+.
  69. ;
  70. ; no bgui.library
  71. msgNoBguiLib (//)
  72. Cannot open bgui.library v39+.
  73. ;
  74. ; no textfield.gadget
  75. msgNoTextFieldGadget (//)
  76. Cannot open textfield.gadget v3+.
  77. ;
  78. ;
  79. ; Fatal error requester
  80. ; =====================
  81. ;
  82. ; This requester appears if a fatal error occurs while Typeface is
  83. ; running. %s is replaced by the name of the routine which failed,
  84. ; e.g. AllocAslRequest()
  85. msgFatalError (//)
  86. A fatal error has occured:\nA call to %s has failed.
  87. ;
  88. ;
  89. ; Loading in a font
  90. ; =================
  91. ;
  92. ; font requester title
  93. msgOpenFont (//)
  94. Open Font
  95. ;
  96. ; Error requester on load failure. %s is replaced by the font name,
  97. ; e.g. "topaz".
  98. msgNoOpenFont (//)
  99. Cannot open %s.
  100. ;
  101. ;
  102. ; Character editing windows
  103. ; =========================
  104. ;
  105. ; The standard window title. %c is replaced by the character, %lu its
  106. ; number in decimal and %.2lX its number in hex, e.g. for "w", the title
  107. ; would be "w (119 decimal/$77 hex)".
  108. msgCharTitle (//)
  109. %c (%lu decimal/$%.2lX hex)
  110. ; Special case for character zero.
  111. msgZeroTitle (//)
  112. (0 decimal/$00 hex)
  113. ; Title for blank character.
  114. msgBlankTitle (//)
  115. blank
  116. ;
  117. ;
  118. ; About menu item
  119. ; ===============
  120. ;
  121. ; text in About requester
  122. msgFreeChip (//)
  123. Free Chip Memory
  124. msgFreeFast (//)
  125. Free Fast Memory
  126. ;
  127. ;
  128. ; Quit menu item
  129. ; ==============
  130. ;
  131. ; This requester appears if "Confirm Quit" selected in preferences.
  132. ; If the character data has been modified, %s is replaced by the
  133. ; following message, else "".
  134. msgCheckQuit (//)
  135. %sDo you wish to quit?
  136. ; Note the space at the end of this text!
  137. msgCharsChanged (//)
  138. The character data has been\nchanged. 
  139. ;
  140. ; Gadget string
  141. msgQuitCancel (//)
  142. Quit|Cancel
  143. ;
  144. ; This requester appears if Typeface cannot quit due to visitor windows
  145. ; open on its screen.
  146. msgVisitors (//)
  147. Please close all visitor windows.
  148. ;
  149. ;
  150. ; Reset Kerning menu item
  151. ; =======================
  152. ;
  153. ; Query user's intent.
  154. msgCheckResetKerning (//)
  155. Do you wish the kerning and\n\
  156. spacing information for all\n\
  157. characters to be reset?
  158. ;
  159. ;
  160. ; PutPositive() error requester
  161. ; =============================
  162. ;
  163. ; This function is called to give a general message when a number
  164. ; entered in a window is too small. %s will be replaced by a string,
  165. ; e.g. "font height", and %ld by a number, so the requester might read
  166. ; (in English) "The font height must be greater than 1."
  167. msgPutPositive (//)
  168. The %s must be greater than %ld.
  169. ;
  170. ;
  171. ; Font Parameters window
  172. ; ======================
  173. ;
  174. ; window title
  175. ;
  176. msgFontParamsTitle (//)
  177. Edit Font Parameters
  178. ;
  179. ; labels for font type cycle gadget
  180. msgFontFixed (//)
  181. Fixed Width
  182. msgFontProp (//)
  183. Proportional
  184. ;
  185. ; labels for aspect ratio cycle gadget
  186. msgAspectNormal (//)
  187. Normal
  188. msgAspectThin (//)
  189. Thin
  190. msgAspectWide (//)
  191. Wide
  192. ;
  193. ; The following are the labels for the gadgets.
  194. ;
  195. ; font type cycle
  196. gadgFontType (//)
  197. _Font Type
  198. ;
  199. ; font height string
  200. gadgFontHeight (//)
  201. _Height
  202. ;
  203. ; font baseline string
  204. gadgFontBaseline (//)
  205. _Baseline
  206. ;
  207. ; font width string
  208. gadgFontWidth (//)
  209. _Width
  210. ;
  211. ; bold smear string
  212. gadgBoldSmear (//)
  213. Bold _Smear
  214. ;
  215. ; normal check box
  216. gadgFontNormal (//)
  217. _Normal
  218. ;
  219. ; italic check box
  220. gadgFontItalic (//)
  221. _Italic
  222. ;
  223. ; bold check box
  224. gadgFontBold (//)
  225. B_old
  226. ;
  227. ; underline check box
  228. gadgFontUnderline (//)
  229. _Underline
  230. ;
  231. ; extended check box
  232. gadgFontExtended (//)
  233. _Extended
  234. ;
  235. ; reversed check box
  236. gadgFontReversed (//)
  237. _Reversed
  238. ;
  239. ; aspect cycle
  240. gadgFontAspect (//)
  241. As_pect
  242. ;
  243. ; blank gadget
  244. gadgFontBlank (//)
  245. B_lank
  246. ;
  247. ; These requesters appear if an incorrect value is entered as one of the
  248. ; parameters and the Accept gadget is selected.
  249. ;
  250. ; error if baseline too small
  251. msgErrorBaseline (//)
  252. The font baseline must be\n\
  253. less than the font height.
  254. ;
  255. ; error if font width negative
  256. msgErrorFontWidth (//)
  257. The font width must be positive.
  258. ;
  259. ; warning when changing font type
  260. msgWarnPropChange (//)
  261. This font will be changed from proportional\n\
  262. to fixed width. Do you wish all characters\n\
  263. to have the same width (yes is recommended)?
  264. ;
  265. ; the following are passed to the PutPositive() function (see above)
  266. ;
  267. ; bold smear too small
  268. msgBoldSmear (//)
  269. bold smear
  270. ;
  271. ; font baseline too small
  272. msgFontBaseline (//)
  273. font baseline
  274. ;
  275. ; font height too small
  276. msgFontHeight (//)
  277. font height
  278. ;
  279. ;
  280. ; Preferences window
  281. ; ==================
  282. ;
  283. ; window title
  284. msgPrefsTitle (//)
  285. Preferences
  286. ;
  287. ; page titles
  288. msgPrefsScreen (//)
  289. Screen
  290. msgPrefsToolBar (//)
  291. Tool Bar
  292. msgPrefsEdit (//)
  293. Edit Windows
  294. msgPrefsSelect (//)
  295. Selection Window
  296. msgPrefsMisc (//)
  297. Miscellaneous
  298. ;
  299. ; save gadget
  300. gadgPrefsSave (//)
  301. _Save
  302. ;
  303. ; use gadget
  304. gadgPrefsUse (//)
  305. _Use
  306. ;
  307. ; Requester if there is an error while saving preferences. %s is replaced
  308. ; with the directory to which the save was attempted.
  309. msgPrefsSaveError (//)
  310. Cannot save preferences to\n\"%s\"
  311. ;
  312. ;
  313. ; Preferences window - Screen page
  314. ; ================================
  315. ;
  316. ; screen font requester title
  317. msgScreenFont (//)
  318. Change Screen Font
  319. ;
  320. ; screen mode requester title
  321. msgScreenMode (//)
  322. Change Screen Mode
  323. ;
  324. ; custom screen check box
  325. gadgCustomScr (//)
  326. Cus_tom Screen
  327. ;
  328. ; screen mode box
  329. gadgMode (//)
  330. _Mode
  331. ;
  332. ; screen font box
  333. gadgScreenFont (//)
  334. _Font
  335. ;
  336. ; public screen string
  337. gadgPubScreen (//)
  338. _Public Screen
  339. ;
  340. ; The screen mode requester is only present in asl.library v38+.
  341. ; If the version of asl is too old, show this error and continue.
  342. msgNeedAslV38 (//)
  343. asl.library v38 or higher required.
  344. ;
  345. ;
  346. ; Preferences window - Tool Bar page
  347. ; ==================================
  348. ;
  349. ; tool bar group
  350. msgToolBarElements (//)
  351. Tool Bar Elements
  352. ;
  353. ; height string
  354. gadgToolBarHeight (//)
  355. _Height
  356. ;
  357. ; auto height check box
  358. gadgAuto (//)
  359. _Auto
  360. ;
  361. ; Passed to PutPositive() (see above) if the tool bar height is too small.
  362. msgToolbarHeight (//)
  363. tool bar height
  364. ;
  365. ;
  366. ; Preferences window - Edit Windows page
  367. ; ======================================
  368. ;
  369. ; pixels group
  370. msgPixels (//)
  371. Pixels
  372. ;
  373. ; pixel width string
  374. gadgPixelWidth (//)
  375. _Width
  376. ;
  377. ; pixel height string
  378. gadgPixelHeight (//)
  379. _Height
  380. ;
  381. ; border cycle gadget
  382. gadgPixelBorder (//)
  383. _Border
  384. ;
  385. ; border cycle labels
  386. msgBorderNo (//)
  387. No
  388. msgBorderYes (//)
  389. Yes
  390. msgBorderGrid (//)
  391. Grid
  392. ;
  393. ; maximize window check box
  394. gadgMaxWindow (//)
  395. _Maximize Window 
  396. ;
  397. ; show baseline check box
  398. gadgShowBLine (//)
  399. Baseli_ne
  400. ;
  401. ; Passed to PutPositive() (see above) if the pixel width is too small.
  402. msgPixelWidth (//)
  403. pixel width
  404. ; Passed to PutPositive() if the pixel height is too small.
  405. msgPixelHeight (//)
  406. pixel height
  407. ;
  408. ;
  409. ; Preferences window - Selection Window page
  410. ; ==========================================
  411. ;
  412. ; window sizing check box
  413. gadgSizeWin (//)
  414. Window Si_zing
  415. ;
  416. ; shift check box
  417. gadgShift (//)
  418. Sh_ift
  419. ;
  420. ; selection window width cycle
  421. gadgWidthCycle (//)
  422. _Width
  423. ;
  424. ; selection window height string
  425. gadgSelWinHeight (//)
  426. _Height
  427. ;
  428. ; selection window font gadget
  429. gadgSelWinFont (//)
  430. _Font
  431. ;
  432. ; Passed to PutPositive() (see above) if the window width is too small.
  433. msgSelWndWidth (//)
  434. window width
  435. ;
  436. ;
  437. ; Preferences window - Miscellaneous page
  438. ; =======================================
  439. ;
  440. ; preferences save cycle group
  441. msgSavePrefsTo (//)
  442. Save preferences to
  443. ;
  444. ; confirm quit check box
  445. gadgQuit (//)
  446. Confirm _Quit
  447. ;
  448. ; preferences save cycle labels
  449. msgPrefsEnv (//)
  450. Environment Variable
  451. msgPrefsProg (//)
  452. Typeface Directory
  453. ;
  454. ;
  455. ; Change Font Directory window
  456. ; ============================
  457. ;
  458. ; window title
  459. msgFontDirTitle (//)
  460. Change Font Directory
  461. ;
  462. ; assign gadget
  463. gadgAssign (//)
  464. _Assign
  465. ;
  466. ; assign add gadget
  467. gadgAssignAdd (//)
  468. Assign A_dd
  469. ;
  470. ; Requester if specified directory not found. %s is replaced with the
  471. ; directory path.
  472. msgNoDir (//)
  473. Cannot find directory\n\"%s\"
  474. ;
  475. ;
  476. ; Save Font window
  477. ; ================
  478. ;
  479. ; window title
  480. msgSaveTitle (//)
  481. Save Font
  482. ;
  483. ; directory string gadget
  484. gadgFontDir (//)
  485. Font _Directory
  486. ;
  487. ; font name string gadget
  488. gadgFontName (//)
  489. _Font
  490. ;
  491. ; font size
  492. msgSize (//)
  493. Size
  494. ;
  495. ; first character string gadget
  496. gadgFirst (//)
  497. F_irst
  498. ;
  499. ; last character string gadget
  500. gadgLast (//)
  501. _Last
  502. ;
  503. ; kern info check box
  504. gadgKernInfo (//)
  505. _Kern Info
  506. ;
  507. ; save gadget
  508. gadgSave (//)
  509. _Save
  510. ;
  511. ; Error requesters if the first or last characters to be saved are not
  512. ; in the range 0 to 255.
  513. msgFirstRange (//)
  514. The first character must be between 0 and 255.
  515. msgLastRange (//)
  516. The last character must be between 0 and 255.
  517. ;
  518. ; Error if first char > last.
  519. msgFirstGreaterLast (//)
  520. The first character cannot be greater than the last.
  521. ;
  522. ; Warning if save directory does not exist. %s is replaced by the
  523. ; name of the directory.
  524. msgSaveNoDir (//)
  525. Directory \"%s\"\ndoes not exist.
  526. ; gadget text
  527. msgSaveNoDirGadgets (//)
  528. Create|Cancel
  529. ;
  530. ; Error if directory cannot be created. %s is replaced by the name of
  531. ; the directory
  532. msgSaveCreateError (//)
  533. Cannot create directory\n\"%s\".
  534. ;
  535. ; Warning if file already exists. %s is replaced by the file name.
  536. msgSaveWarnExists (//)
  537. File \"%s\" exists.
  538. ; gadget text
  539. msgSaveWarnExistsGadgets (//)
  540. Overwrite|Cancel
  541. ;
  542. ; Error writing font header. %s is replaced by the directory name.
  543. msgSaveWriteHeader (//)
  544. Cannot write font header to \n\"%s\".
  545. ;
  546. ; Error creating font header
  547. msgSaveCreateHeader (//)
  548. Cannot create font header.
  549. ;
  550. ; Error writing font data. %s is replaced by the directory name.
  551. msgSaveWriteData (//)
  552. Cannot write font data to \n\"%s\".
  553. ;
  554. ; Not enough memory.
  555. msgSaveNoMemory (//)
  556. Not enough memory.
  557. ;
  558. ;
  559. ; Change Character Width window
  560. ; =============================
  561. ;
  562. ; The window title. %lu is replaced by the decimal number of the
  563. ; character, and %d by it's width, e.g. for "w" from topaz/8:
  564. ; "Change Width of 119 (from 8)"
  565. msgWidthTitle (//)
  566. Change Width of %lu (from %d)
  567. ; A special case for the blank character.
  568. msgWidthTitleBlank (//)
  569. Change Width of blank (from %d)
  570. ;
  571. ; width string gadget
  572. gadgNewWidth (//)
  573. New _Width
  574. ;
  575. ; Left/right offset texts. %ld if replaced by the pixel offset.
  576. msgLeftOffset (//)
  577. Left Offset: %ld
  578. msgRightOffset (//)
  579. Right Offset: %ld
  580. ;
  581. ;
  582. ; Change Character Kerning window
  583. ; ===============================
  584. ;
  585. ; The window title. %lu is replaced by the decimal number of the
  586. ; character, e.g. for "w" from topaz/8: "Kerning for 119"
  587. msgKernTitle (//)
  588. Kerning for %lu
  589. ; A special case for the blank character.
  590. msgKernTitleBlank (//)
  591. Kerning for blank
  592. ;
  593. ; spacing string gadget
  594. gadgSpacing (//)
  595. _Spacing
  596. ;
  597. ; kerning string gadget
  598. gadgKerning (//)
  599. _Kerning
  600. ;
  601. ;
  602. ; Font Preview window
  603. ; ===================
  604. ;
  605. ; window title
  606. msgPreviewTitle (//)
  607. Font Preview
  608. ;
  609. ; update gadget
  610. gadgUpdate (//)
  611. Upda_te
  612. ;
  613. ; show all gadget
  614. gadgShowAll (//)
  615. S_how All
  616. ;
  617. ; clear gadget
  618. gadgClear (//)
  619. C_lear
  620. ;
  621. ;
  622. ; Menus
  623. ; =====
  624. ;
  625. ; The following are the strings for all the menus.
  626. ;
  627. ; Project menu
  628. ;
  629. msgMenuProjectTitle (//)
  630. Project
  631. msgMenuOpen (//)
  632. Open Font...
  633. msgMenuSave (//)
  634. Save Font...
  635. msgMenuChangeDir (//)
  636. Change Dir...
  637. msgMenuPreview (//)
  638. Preview...
  639. msgMenuPrefs (//)
  640. Preferences...
  641. msgMenuAbout (//)
  642. About...
  643. msgMenuQuit (//)
  644. Quit
  645. ;
  646. ; Font menu
  647. ;
  648. msgMenuFontTitle (//)
  649. Font
  650. msgMenuEditFont (//)
  651. Edit Parameters...
  652. msgMenuMoveLeft (//)
  653. Move Left
  654. msgMenuMoveRight (//)
  655. Move Right
  656. msgMenuMoveUp (//)
  657. Move Up
  658. msgMenuMoveDown (//)
  659. Move Down
  660. msgMenuResetKern (//)
  661. Reset Kerning...
  662. ;
  663. ; Character menu
  664. ;
  665. msgMenuCharTitle (//)
  666. Character
  667. msgMenuCopy (//)
  668. Copy
  669. msgMenuPaste (//)
  670. Paste
  671. msgMenuZoomIn (//)
  672. Zoom In
  673. msgMenuZoomOut (//)
  674. Zoom Out
  675. msgMenuChangeWidth (//)
  676. Change Width...
  677. msgMenuKerning (//)
  678. Kerning...
  679. ;
  680. ; Preview menu
  681. ;
  682. msgMenuPreviewTitle (//)
  683. Preview
  684. msgMenuUpdate (//)
  685. Update
  686. msgMenuShowAll (//)
  687. Show All
  688. msgMenuClear (//)
  689. Clear
  690.